home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr37 / catlist0.zip / ERROR.QB < prev    next >
Text File  |  1995-02-26  |  3KB  |  72 lines

  1.  
  2.                             QuickBasic Error codes
  3.                       DoorFrame uses the QB error codes.
  4.  
  5.  ---------------------------------------------------------------------------
  6.      The following file was compiled and written by Dennis Maidon,
  7. PAROLE Software and may not be used or distributed without expressed
  8. written permission from Dennis Maidon.  Copyright 1991-94, PAROLE
  9. Software --- all rights reserved.
  10.  ---------------------------------------------------------------------------
  11.  
  12.  2   Syntax Error                       61   Disk full
  13.  5   Illegal Function Call               62   Input past end of File
  14.  6   Overflow                           63   Bad record number
  15.  7   Out of memory                      64   Bad filename
  16. 11   Division by Zero                   67   Too many files
  17. 13   type mismatch                      68   Device unavailable
  18. 24   Device Timeout                     69   Comm-buffer overflow
  19. 25   Device fault                       70   Permission denied
  20. 52   Bad filename or number             71   Disk not ready
  21. 53   File Not Found                     72   Disk media error
  22. 55   File Already open                  74   Rename across disk
  23. 57   Device I/O error                   75   Path/File access error
  24. 58   File already exists                76   Path not found
  25. 59   Bad Record length
  26.  
  27.      The most common error that you will see is #62.  This is usually caused
  28. by the CFG file not having enough lines.  I have included this list so
  29. that you may be able to fix a problem that occurs with a PAROLE Software
  30. door.
  31.  
  32. 486DX CPU's
  33. -----------
  34. The math coprocessor in 486DX CPUs cannot handle floating point math which
  35. all MicroSoft Basic's use. This can show up as an ERROR 5, a keyboard 
  36. timeout, etc.
  37.  
  38. Fortunately there is an easy fix for this problem. Simply place the following
  39. line in the AUTOEXEC.BAT file:
  40.  
  41. SET NO87=ON
  42.  
  43. This will inform DoorFrame to use a different timing routine.  If you are
  44. operating under DESQview/X, you must flag the MATH COPROCESSOR as being ON.
  45.  
  46. If the door seems to operate fine on  the BBS end but the remote cannot
  47. receive or receives garbled info, check and make sure you are passing the
  48. correct IRQ to the door.  Com 1 and 2 are standard and as such, you do
  49. not need to pass the IRQ to them.
  50.  
  51. If you are operating under DESQview, you will need to load DVANSI in
  52. each window.
  53.  
  54. Error #75 is usually an incorrect path and/or filename in the CFG file.
  55. Please check the filenames and paths in your CFG file(s).  They *MUST* be
  56. correct in order for the door to operate.
  57.  
  58. Unless you are using a Digi-board and need a fossil driver, DO NOT use
  59. the "/FD" switch on the command line.  The doors do not need a fossil
  60. driver to operate on serial ports.
  61.  
  62. If you are operating under Wildcat! 4.x, you will need to specify
  63. DOOR.SYS on line #1 of the CFG file.  WC!4 no longer creates or supports
  64. USERINFO.DAT.
  65.  
  66.  
  67. NOTE:  If you have not run the INSTALL.BAT on a new installation, please
  68.        do not call me for support.  I include this batch file for a
  69.        reason, to install the door properly.
  70.  
  71. Revised: 7/10/94
  72.